home *** CD-ROM | disk | FTP | other *** search
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- >
-
- <xsl:import href="strSplit-to-Words.xsl"/>
-
- <!-- to be applied on words.xml -->
-
- <xsl:output indent="yes" omit-xml-declaration="yes"/>
-
- <xsl:template match="/">
- <xsl:call-template name="str-split-to-words">
- <xsl:with-param name="pStr" select="'Tuesday 26 February 2002'"/>
- <xsl:with-param name="pDelimiters" select="',
'"/>
- </xsl:call-template>
- </xsl:template>
-
- </xsl:stylesheet>